home *** CD-ROM | disk | FTP | other *** search
- Path: bcarh8ab.bnr.ca!news
- From: pablo.olate.0500908@nt.com (Pablo Olate)
- Newsgroups: comp.lang.c++
- Subject: Re: How can i load bitmap ???
- Date: Mon, 04 Mar 1996 21:06:05 GMT
- Organization: Bell Northern Research
- Message-ID: <4hfifb$5hc@bcarh8ab.bnr.ca>
- References: <1996Mar1.124539.1@tnclus>
- NNTP-Posting-Host: pbpdb035.bnr.ca
- X-Newsreader: Forte Free Agent 1.0.82
-
- jrossi@tnclus.tele.nokia.fi wrote:
-
- >How can i load bitmaps to my program?
-
- >I try following:
-
- >hBitmap = LoadBitmap(hinst, "Picture");
-
- Try
-
- hBitMap = LoadBitmap(hinst, MAKEINTRESOURCE (Picture)) ;
-
- This uses the resource identifier for Picture to create
- the handle for the bitmap.
-
- Pablo Olate.
-
-